home *** CD-ROM | disk | FTP | other *** search
- /*
- * File: DZResource.h
- * Author: Dan Venolia
- *
- * Copyright © 1996 Apple Computer, Inc.
- */
-
- #ifndef __DZResource__
- #define __DZResource__
-
- // WINDs
- enum {
- kWindID_Display = 128
- };
-
- // ALRTs
- enum {
- kAlrtID_About = 128
- };
-
- // DLOGs
- enum {
- kDlogID_Config3DSound = 128
- };
-
- // DITLs
- enum {
- kDITLID_About = 128,
- kDITLID_Config3DSound
- };
-
- // Dialog items for kDITLID_Config3DSound
- enum {
- kConfig3DSoundItem_OK = 1, // Button
- kConfig3DSoundItem_Cancel, // Button
- kConfig3DSoundItem_Stereo, // Radio
- kConfig3DSoundItem_Mono, // Radio
- kConfig3DSoundItem_Headphones, // Radio
- kConfig3DSoundItem_Angle, // Slider-like control
- kConfig3DSoundItem_SetupBox, // User item -- box
- kConfig3DSoundItem_SetupLabel, // Static text
- kConfig3DSoundItem_AngleBox, // User item -- box
- kConfig3DSoundItem_AngleLabel, // Static text
- kConfig3DSoundItem_OKHilite // User item -- OK button hilite
- };
-
- // MBARs
- enum {
- kMBarID_Main = 128
- };
-
- // MENUs
- enum {
- kMenuID_Apple = 128,
- kMenuID_File
- };
-
- // Apple menu items
- enum {
- kAppleItem_About = 1
- };
-
- // File menu items
- enum {
- kFileItem_Config3DSound = 1,
- kFileItem_1,
- kFileItem_Quit
- };
-
- // 3DMFs
- enum {
- k3DMFID_AutoDrone = 128,
- k3DMFID_AutoDroneBurn,
- k3DMFID_AutoDroneExplosion
- };
-
- // PICTs
- enum {
- kPictID_StartScreen = 128
- };
-
- // snds
- enum {
- kSndID_AutoIdle = 128,
- kSndID_AutoBurn,
- kSndID_AutoExplosion
- };
-
-
- #endif /* __DZResource__ */